home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #13 / CD 13 (Black) - 2001.iso / K-CS.DCR / 00348_Hilite tre, 4 ved mus.ls < prev    next >
Encoding:
Text File  |  2001-08-24  |  942 b   |  30 lines

  1. on new me
  2.   set the visible of sprite the currentSpriteNum to 1
  3.   set the visible of sprite (the currentSpriteNum + 1) to 0
  4.   set the visible of sprite (the currentSpriteNum + 2) to 0
  5.   set the visible of sprite (the currentSpriteNum + 3) to 0
  6.   set the visible of sprite (the currentSpriteNum + 4) to 0
  7. end
  8.  
  9. on mouseEnter me
  10.   set the visible of sprite (the currentSpriteNum + 1) to 1
  11.   set the visible of sprite (the currentSpriteNum + 2) to 1
  12.   set the visible of sprite (the currentSpriteNum + 3) to 1
  13. end
  14.  
  15. on mouseLeave me
  16.   set the visible of sprite (the currentSpriteNum + 1) to 0
  17.   set the visible of sprite (the currentSpriteNum + 2) to 0
  18.   set the visible of sprite (the currentSpriteNum + 3) to 0
  19.   set the visible of sprite (the currentSpriteNum + 4) to 0
  20. end
  21.  
  22. on mouseDown
  23.   set the visible of sprite (the currentSpriteNum + 4) to 1
  24.   updateStage()
  25. end
  26.  
  27. on mouseUp
  28.   set the visible of sprite (the currentSpriteNum + 4) to 0
  29. end
  30.